.title{
    font-size: 1.5 rem !important;
}

.navpad{
    padding-top: 0;
    padding-bottom: 0;
}

.walink {
  position: fixed;
  display: block;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  animation: anim 1s infinite alternate;
}

@keyframes anim {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}